*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%; /* 1rem = 10px */
}

body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    background-color: black;
    overflow-y: hidden;
    
}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
    text-shadow: 
    1px 0px 1px #ccc, 0px 1px 1px #eee, 
    2px 1px 1px #ccc, 1px 2px 1px #eee,
    3px 2px 1px #ccc, 2px 3px 1px #eee,
    4px 3px 1px #ccc, 3px 4px 1px #eee,
    5px 4px 1px #ccc, 4px 5px 1px #eee,
    6px 5px 1px #ccc, 5px 6px 1px #eee,
    7px 6px 1px #ccc;
}

.main-title h1{
    font-size: 6rem;
    text-transform: uppercase;
    font-weight: 800;
    padding-bottom: 10px;
    color: #555;
}

.main-title h2{
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #555;
}

img{
   display: block;
   margin: auto;
   width: 300px;
   height: 300px;
}

    @media (max-width: 767px) {
        
        .container {
            display: flex;
            align-items: center;
            justify-content: center;
    }

    .row jutify-content-center{
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .img{
        padding-bottom: 250px;
    }
}